type net/http.http2stream
28 uses
net/http (current package)
h2_bundle.go#L4490: streams: make(map[uint32]*http2stream),
h2_bundle.go#L4671: streams map[uint32]*http2stream
h2_bundle.go#L4722: type http2stream struct {
h2_bundle.go#L4758: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
h2_bundle.go#L5220: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
h2_bundle.go#L5766: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
h2_bundle.go#L6016: func (st *http2stream) isPushed() bool {
h2_bundle.go#L6022: func (st *http2stream) endStream() {
h2_bundle.go#L6038: func (st *http2stream) copyTrailersToHandlerRequest() {
h2_bundle.go#L6049: func (st *http2stream) onReadTimeout() {
h2_bundle.go#L6059: func (st *http2stream) onWriteTimeout() {
h2_bundle.go#L6202: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
h2_bundle.go#L6251: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
h2_bundle.go#L6258: st := &http2stream{
h2_bundle.go#L6287: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
h2_bundle.go#L6362: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
h2_bundle.go#L6437: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
h2_bundle.go#L6545: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
h2_bundle.go#L6577: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
h2_bundle.go#L6587: st *http2stream
h2_bundle.go#L6594: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
h2_bundle.go#L6604: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
h2_bundle.go#L6615: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
h2_bundle.go#L6620: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
h2_bundle.go#L6643: stream *http2stream
h2_bundle.go#L6698: stream *http2stream
h2_bundle.go#L7269: parent *http2stream
h2_bundle.go#L11417: stream *http2stream